provider Events GET
/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/events/ @utdk/sentry
/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/events/ List an Issue's Events
Return a list of error events bound to an issue
- organization_id_or_slug path required
- The ID or slug of the organization the resource belongs to.
- string
- issue_id path required
- The ID of the issue you'd like to query.
- integer
- start query
- The start of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
- string
- end query
- The end of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
- string
- statsPeriod query
- The period of time for the query, will override the start & end parameters, a number followed by one of: - `d` for days - `h` for hours - `m` for minutes - `s` for seconds - `w` for weeks For example, `24h`, to mean query data starting from 24 hours ago to now.
- string
- environment query
- The name of environments to filter by.
- array
- full query
- Specify true to include the full event body, including the stacktrace, in the event payload.
- boolean
- sample query
- Return events in pseudo-random order. This is deterministic so an identical query will always return the same events in the same order.
- boolean
- query query
- An optional search query for filtering events. See [search syntax](https://docs.sentry.io/concepts/search/) and queryable event properties at [Sentry Search Documentation](https://docs.sentry.io/concepts/search/searchable-properties/events/) for more information. An example query might be `query=transaction:foo AND release:abc`
- string
- cursor query
- A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
- string
Try it
Authentication
Configure credentials for API Reference
Gateway
The gateway proxies requests and injects credentials server-side. Configure credentials above, then enter your gateway URL.
Saved automatically to browser storage.
Code snippet
Updates live as you fill in the form above.
TypeScript
import sentry from '@utdk/sentry';
await sentry.listAnIssueSEvents({
"full": false,
"sample": false
})